/* 首页院校 */
.index_school {
  width: 100%;
  min-height: 300px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  justify-content: space-between;
}

.is_school_item {
  width: 266px;
  height: 140px;
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
  margin-bottom: 12px;
}

.is_school_item:nth-last-child(-n+3) {
  margin-bottom: 0;
}

.is_school_tle {
  width: 100%;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding-right: 10px;
  font-size: 16px;
  font-weight: bold;
}

.is_school_tle a {
  font-size: 14px;
  font-weight: initial;
  color: #1E50A2;
}

.issi_body {
  flex: 1;
  display: flex;
  align-items: center;
}

.issi_body:hover {
  color: #555;
  text-decoration: none;
}

.issi_body img {
  width: 80px;
  height: 80px;
  margin: 0 12px;
  flex-shrink: 0;
}

.issi_body div {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: 18px 12px 16px 0;
}

.issi_body div p {
  width: 140px;
  font-size: 15px;
  font-weight: bold;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 1px;
}

.issi_body div p:hover {
  text-decoration: underline;
}

.issi_body div span {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.issi_alink {
  flex-shrink: 0;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  border-top: 1px solid #eee;
}

.issi_alink a {
  flex: 1;
  height: 100%;
  font-size: 14px;
  line-height: 39px;
  text-align: center;
  color: #555;
}

.issi_alink a:hover {
  text-decoration: none;
  background-color: #eee;
}

/* 右下角最新文章 */
.index_new_article {
  margin-top: 20px;
}

.index_new_article li {
  width: 100% !important;
  text-align: left;
  border: none !important;
}

.index_new_article li span {
  padding: 3px 5px;
  display: inline-block;
  background-color: #eee;
  font-size: 12px !important;
  line-height: 12px;
  margin-right: 5px;
}

.index_new_article li span.c,
.index_new_article li:hover span {
  color: #fff;
  background-color: #145ccd;
}